home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 1 / Gold Medal Software Volume 1 (Gold Medal) (1994).iso / prog / dasv10_.arj / ITEFACT.CPP < prev    next >
Encoding:
Text File  |  1993-08-13  |  170 b   |  12 lines

  1. // math.lib function iterative_fact()
  2.  
  3. long iterative_fact(long number)
  4. {
  5.     long j,total=1;
  6.  
  7.     for (j=1;j<=number;j++) {
  8.         total = total * j;
  9.     }
  10. return total;
  11. }
  12.